:-moz-suppressed

Non-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.

The :-moz-suppressed CSS pseudo-class is a Mozilla extension that matches elements representing images that were suppressed because loading images from the specified site has been blocked.

Note: This selector is mainly intended to be used by theme developers.

Syntax

css
:-moz-suppressed {
  /* ... */
}

Examples

Styling elements that have been blocked

css
:-moz-suppressed {
  background: yellow;
  padding: 8px;
}

Specifications

Not part of any standard.

See also